home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / dev / c / c_ced.lha / C&CED / LibAdd.rexx next >
OS/2 REXX Batch file  |  1993-04-12  |  258b  |  14 lines

  1. /*
  2.  * LibAdd
  3.  *
  4.  * SYNOPSIS: 
  5.  *    add support libraries
  6.  *
  7.  */
  8.  
  9.    if ~show('L','rexxarplib.library') then
  10.       call addlib 'rexxarplib.library',0,-30,0
  11.    if ~show('L','rexxsupport.library') then
  12.       call addlib 'rexxsupport.library',0,-30,0
  13.    exit 0
  14.